home *** CD-ROM | disk | FTP | other *** search
/ Champak 62 / Volume 62 - JOGO DISK .iso / Games / penguin_dinner.swf / scripts / __Packages / classes / events / AnimatedClipEvent.as next >
Text File  |  2008-03-17  |  406b  |  15 lines

  1. class classes.events.AnimatedClipEvent
  2. {
  3.    function AnimatedClipEvent($target, $type, $frame, $state)
  4.    {
  5.       this.target = $target;
  6.       this.type = $type;
  7.       this.frame = $frame;
  8.       this.state = $state;
  9.    }
  10.    function toString()
  11.    {
  12.       return "[AnimatedClipEvent type=" + this.type + " target=" + this.target + " frame=" + this.frame + " state=" + this.state + "]";
  13.    }
  14. }
  15.